class system_clock;
| member type | definition | notes |
|---|---|---|
| rep | A signed arithmetic type (or a class that emulates it) | Used to store a count of periods. |
| period | A ratio type | Represents the length of a period in seconds. |
| duration | duration<rep,period> | The clock's duration type. |
| time_point | time_point<system_clock> | The clock's time_point type. |
| member constant | definition |
|---|---|
| is_steady | a bool value specifying whether the clock always advances, and whether it does at a steady state relative to physical time. If true, this implies that the system clock may not be adjusted. |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// system_clock example
#include <iostream>
#include <ctime>
#include <ratio>
#include <chrono>
int main ()
{
using std::chrono::system_clock;
std::chrono::duration<int,std::ratio<60*60*24> > one_day (1);
system_clock::time_point today = system_clock::now();
system_clock::time_point tomorrow = today + one_day;
std::time_t tt;
tt = system_clock::to_time_t ( today );
std::cout << "today is: " << ctime(&tt);
tt = system_clock::to_time_t ( tomorrow );
std::cout << "tomorrow will be: " << ctime(&tt);
return 0;
}
today is: Wed May 30 12:25:03 2012 tomorrow will be: Thu May 31 12:25:03 2012